翻訳と辞書
Words near each other
・ Structural ritualization theory
・ Structural road design
・ Structural robustness
・ Structural rule
・ Structural semantics
・ Structural shape rolling
・ Structural similarity
・ Structural Soil
・ Structural stability
・ Structural steel
・ Structural subordination
・ Structural synthesis of programs
・ Structural system
・ Structural theory
・ Structural trap
Structural type system
・ Structural unemployment
・ Structural unit
・ Structural variation
・ Structural violence
・ Structural violence in Haiti
・ Structural vulnerability
・ Structuralism
・ Structuralism (architecture)
・ Structuralism (biology)
・ Structuralism (disambiguation)
・ Structuralism (philosophy of mathematics)
・ Structuralism (philosophy of science)
・ Structuralism (psychology)
・ Structuralist economics


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Structural type system : ウィキペディア英語版
Structural type system

A structural type system (or ''property-based'' type system) is a major class of type system, in which type compatibility and equivalence are determined by the type's actual structure or definition, and not by other characteristics such as its name or place of declaration. Structural systems are used to determine if types are equivalent and whether a type is a subtype of another. It contrasts with nominative systems, where comparisons are based on the names of the types or explicit declarations, and duck typing, in which only the part of the structure accessed at runtime is checked for compatibility.
== Description ==
In ''structural typing'', an element is considered to be compatible with another if, for each feature within the second element's type, there is a corresponding and identical feature in the first element's type. Some languages may differ on the details, such as whether the ''features'' must match in name. This definition is not symmetric, and includes subtype compatibility. Two types are considered to be identical if each is compatible with the other.
As an example, OCaml uses structural typing on methods for compatibility of object types. Go uses structural typing on methods to determine compatibility of a type with an interface. C++ template functions exhibit structural typing on type arguments. Haxe uses structural typing, although classes are not structurally subtyped.
In languages which support subtype polymorphism, a similar dichotomy can be formed based on how the subtype relationship is defined. One type is a subtype of another if and only if it contains all the ''features'' of the base type (or subtypes thereof); the subtype may contain additional features (such as members not present in the base type, or stronger invariants).
There is a distinction between structural substitution for inferred and non-inferred polymorphism. Some languages, such as Haskell, do not substitute structurally in the case where an expected type is declared (i.e. not inferred), e.g. only substitute for functions that are signature-based polymorphic via type inference. Then it is not possible to accidentally subtype a non-inferred type, although it may still be possible to provide an explicit conversion to a non-inferred type, which is invoked implicitly.
Structural subtyping is arguably more flexible than nominative subtyping, as it permits the creation of ''ad hoc'' types and protocols; in particular, it permits creation of a type which is a supertype of an existing type, without modifying the definition of the latter. However, this may not be desirable where the programmer wishes to create closed abstractions.
A pitfall of structural typing versus nominative typing is that two separately defined types intended for different purposes, but accidentally holding the same properties (e.g. both composed of a pair of integers), could be considered the same type by the type system, simply because they happen to have identical structure. One way this can be avoided is by creating one algebraic data type for each use.
In 1990, Cook, et al., proved that ''inheritance is not subtyping'' in structurally-typed OO languages.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Structural type system」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.